home *** CD-ROM | disk | FTP | other *** search
/ Java for 3D & VRML Worlds / Java for 3d and VRML Worlds.iso / world / blur1 / blur1.java < prev    next >
Text File  |  1996-10-17  |  2KB  |  105 lines

  1. // "Simple Blur Effect" with two blur objects
  2.  
  3. //     created by ask@krc.sony.co.jp (Masamichi zzzcat Asukai)
  4.  
  5. //
  6.  
  7. // Copyright(C) 1996 Sony Corporation. All rights reserved.
  8.  
  9. //
  10.  
  11.  
  12.  
  13. import vrml.*;
  14.  
  15. import vrml.node.*;
  16.  
  17. import vrml.field.*;
  18.  
  19.  
  20.  
  21. public class blur1 extends Script {
  22.  
  23.  
  24.  
  25.     private SFVec3f setTranslation;
  26.  
  27.     private SFVec3f setTranslation2;
  28.  
  29.  
  30.  
  31.     private float[] translation = new float[3];
  32.  
  33.     private float[] translation_old = new float[3];
  34.  
  35.  
  36.  
  37.     private Node realobj;
  38.  
  39.  
  40.  
  41.     // constructor
  42.  
  43.     public void initialize() {
  44.  
  45.     setTranslation = (SFVec3f)getEventOut("setTranslation");
  46.  
  47.     setTranslation2 = (SFVec3f)getEventOut("setTranslation2");
  48.  
  49.  
  50.  
  51.     realobj = (Node)((SFNode)getField("realobj")).getValue();
  52.  
  53.  
  54.  
  55.     // get translation of real object
  56.  
  57.     ((SFVec3f)realobj.getExposedField("translation")).getValue(translation);
  58.  
  59.     translation_old[0] = translation[0];
  60.  
  61.     translation_old[1] = translation[1];
  62.  
  63.     translation_old[2] = translation[2];
  64.  
  65.     }
  66.  
  67.     
  68.  
  69.     public void processEvent(Event e) {
  70.  
  71.     if (e.getName().equals("interval")) {
  72.  
  73.         // set translation of blur object
  74.  
  75.             setTranslation.setValue(translation);
  76.  
  77.             setTranslation2.setValue(translation_old);
  78.  
  79.  
  80.  
  81.         // save old translation
  82.  
  83.         translation_old[0] = translation[0];
  84.  
  85.         translation_old[1] = translation[1];
  86.  
  87.         translation_old[2] = translation[2];
  88.  
  89.  
  90.  
  91.         // get translation of real object
  92.  
  93.         ((SFVec3f)realobj.getExposedField("translation")).getValue(translation);
  94.  
  95.         }
  96.  
  97.     }
  98.  
  99. }
  100.  
  101.  
  102.  
  103.  
  104.  
  105.